code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/generators/textWrap.js b/src/generators/textWrap.js @@ -2,13 +2,14 @@ import defineClasses from '../util/defineClasses'
export default function() {
return defineClasses({
- 'wrap-normal': { 'white-space': 'normal' },
- 'wrap-none': { 'white-space': 'nowrap' },
- 'wrap-pre': { 'white-space': 'pre' },
- ... | 10 |
diff --git a/packages/swagger2openapi/validate.js b/packages/swagger2openapi/validate.js @@ -412,9 +412,11 @@ function checkPathItem(pathItem,openapi,options) {
options.context.pop();
}
if (op.externalDocs) {
+ contextAppend(options,'externalDocs');
op.externalDocs.should.have.key('url');
op.externalDocs.url.should.hav... | 7 |
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog
+## v1.9.1 (2020-8-12)
+
+### Bug Fixes
+
+* Pages proxied with TestCafe now expose the correct `File` object for uploaded files ([testcafe-hammerhead/#2338](https://github.com/DevExpress/testcafe-hammerhead/issues/2338))
+
## v1.9.0 (2020-8-6)
### Enhancements
| 0 |
diff --git a/src/client/js/components/CustomNavigation.jsx b/src/client/js/components/CustomNavigation.jsx @@ -25,7 +25,7 @@ const CustomNavigation = (props) => {
const random = Math.random().toString(32).substring(2);
const navTitleId = `custom-navtitle-${random}`;
- const navTabId = `custom-navtab-${random}`;
+ const... | 10 |
diff --git a/src/common/quiz/card_strategies.js b/src/common/quiz/card_strategies.js @@ -39,8 +39,12 @@ function arrayToLowerCase(array) {
/* COMPARE ANSWER STRATEGIES */
+function removeSpoilerTags(answerCandidate) {
+ return answerCandidate.replace(/\|\|/g, '');
+}
+
function answerCompareConvertKana(card, answerCand... | 11 |
diff --git a/html/settings/_settings.scss b/html/settings/_settings.scss @@ -1965,7 +1965,7 @@ $sprk-big-nav-item-line-height: 53px !default;
// Masthead Accordion
/// The left border of the active item
/// in the navigation links when masthead is on narrow viewports.
-$sprk-masthead-accordion-active-left-border: 3px s... | 3 |
diff --git a/src/components/Editor/EditorControlPane/Widget.js b/src/components/Editor/EditorControlPane/Widget.js @@ -2,6 +2,7 @@ import PropTypes from 'prop-types';
import React, { Component } from 'react';
import ImmutablePropTypes from "react-immutable-proptypes";
import { Map } from 'immutable';
+import { uniqueId... | 3 |
diff --git a/constants.js b/constants.js @@ -33,6 +33,7 @@ export const polygonVigilKey = `0937c004ab133135c86586b55ca212a6c9ecd224`;
export const storageHost = 'https://ipfs.webaverse.com';
export const previewHost = 'https://preview.exokit.org';
export const inappPreviewHost = 'https://app.webaverse.online';
+export ... | 0 |
diff --git a/src/sagas/authentication.js b/src/sagas/authentication.js @@ -26,7 +26,7 @@ export function* logoutSaga() {
]
while (true) {
yield take(actionTypes)
- document.cookie = 'ello_skip_prerender=false'
+ document.cookie = 'ello_skip_prerender=false; path=/; expires=Fri, 31 Dec 9999 23:59:59 GMT'
yield put(push(... | 12 |
diff --git a/src/plugins/Dashboard/index.js b/src/plugins/Dashboard/index.js @@ -210,9 +210,8 @@ module.exports = class DashboardUI extends Plugin {
document.body.classList.add('is-UppyDashboard-open')
document.body.style.top = `-${this.savedDocumentScrollPosition}px`
- this.setFocusToFirstNode()
-
- this.updateDashboa... | 0 |
diff --git a/vis/js/intermediate.js b/vis/js/intermediate.js @@ -408,7 +408,7 @@ function createZoomParameterMiddleware() {
) {
addQueryParam(
"area",
- action.selectedAreaData.uri
+ typeof action.selectedAreaData.uri !== "undefined"
? action.selectedAreaData.uri
: action.selectedAreaData.title
);
| 1 |
diff --git a/server/handlers/awsJobs.js b/server/handlers/awsJobs.js @@ -351,7 +351,8 @@ let handlers = {
.join('/')
const stream = aws.s3.sdk.getObject(objParams).createReadStream()
archive.append(stream, { name: fileName })
- async.setImmediate(cb)
+ // Prevent race condition blocking new streams
+ setTimeout(cb, 300... | 11 |
diff --git a/token-metadata/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/metadata.json b/token-metadata/0xF5DCe57282A584D2746FaF1593d3121Fcac444dC/metadata.json "symbol": "CSAI",
"address": "0xF5DCe57282A584D2746FaF1593d3121Fcac444dC",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/docs/README.md b/docs/README.md @@ -19,8 +19,8 @@ First time using node.js ? You may want to start with the [tutorial](tutorial.md
* Supports Minecraft 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15 and 1.16.
* Entity knowledge and tracking.
- * Block knowledge. You can query the world around you.
- * Basic ... | 7 |
diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx @@ -87,7 +87,7 @@ const StyledFooter = styled.footer`
display: inline-block;
&:hover {
- color: rgba(255,255,255,0.87);
+ color: ${constants.textColorPrimary};
}
&::after {
| 14 |
diff --git a/rollup.config.js b/rollup.config.js @@ -6,7 +6,6 @@ import copy from "rollup-plugin-copy";
export default {
input: ['source/gltf-sample-viewer.js'],
- external: ['gl-matrix', 'axios', 'jpeg-js', 'fast-png'],
output: [
{
file: 'dist/gltf-viewer.js',
| 2 |
diff --git a/src/libs/API.js b/src/libs/API.js @@ -146,11 +146,9 @@ function handleExpiredAuthToken(originalResponse, originalCommand, originalParam
})
// Now that the API is authenticated, make the original request again with the new authToken
- // Use HttpUtils here so that retry logic is avoided. Since this code is ... | 4 |
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -384,6 +384,12 @@ metaversefile.setApi({
registerMirror(mirror) {
mirrors.push(mirror);
},
+ unregisterMirror(mirror) {
+ const index = mirrors.indexOf(mirror);
+ if (index !== -1) {
+ mirrors.splice(index, 1);
+ }
+ },
useWorld() {
return {
appManager: world.... | 0 |
diff --git a/src/App/App.js b/src/App/App.js @@ -13,7 +13,6 @@ import ProtectedRoute from './ProtectedRoute';
import Receive from '../Receive';
import Send from '../Send';
import Settings from '../Settings';
-import Signer from '../Signer';
import Tokens from '../Tokens';
import './App.css';
@@ -26,34 +25,37 @@ class A... | 2 |
diff --git a/character-controller.js b/character-controller.js @@ -545,6 +545,17 @@ class StatePlayer extends PlayerBase {
this.syncAvatarCancelFn = null;
}
+ setSpawnPoint(position, quaternion) {
+ const localPlayer = metaversefile.useLocalPlayer();
+ localPlayer.position.copy(position);
+ localPlayer.quaternion.copy(... | 0 |
diff --git a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js @@ -33,7 +33,9 @@ var writeFileSync = require( '@stdlib/fs/write-file' ).sync;
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
var readJSON = require( '@stdlib/fs/read-json' ... | 14 |
diff --git a/player/js/animation/AnimationManager.js b/player/js/animation/AnimationManager.js @@ -34,8 +34,8 @@ var animationManager = (function(){
i+=1;
}
var animItem = new AnimationItem();
- animItem.setData(element, animationData);
setupAnimation(animItem, element);
+ animItem.setData(element, animationData);
retu... | 12 |
diff --git a/lib/plugins/aws/package/compile/events/apiGateway/lib/hack/updateStage.js b/lib/plugins/aws/package/compile/events/apiGateway/lib/hack/updateStage.js @@ -29,6 +29,10 @@ module.exports = {
defaultApiGatewayLogLevel,
apiGatewayValidLogLevels,
updateStage() {
+ const provider = this.state.service.provider;
+ ... | 7 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/view.js b/packages/node_modules/@node-red/editor-client/src/js/ui/view.js @@ -4906,7 +4906,7 @@ RED.view = (function() {
if (d._def.button) {
var buttonEnabled = isButtonEnabled(d);
this.__buttonGroup__.classList.toggle("red-ui-flow-node-button-disabl... | 2 |
diff --git a/website/src/docs/server.md b/website/src/docs/server.md @@ -83,8 +83,7 @@ Please ensure that the required env variables are set before running/using uppy-
$ uppy-server
```
-If you cloned the repo from gtihub and want to run it as a standalone server, you may also run the following command from within its
... | 1 |
diff --git a/planet.js b/planet.js @@ -860,6 +860,7 @@ planet.addEventListener('trackedobjectadd', async e => {
planet.addEventListener('trackedobjectremove', async e => {
// XXX
});
+planet.isObject = object => objects.includes(object);
planet.intersectObjects = raycaster => {
return false; // XXX
};
\ No newline at e... | 0 |
diff --git a/NotAnAnswerFlagQueueHelper.user.js b/NotAnAnswerFlagQueueHelper.user.js // @description Inserts several sort options for the NAA / VLQ / Review LQ Disputed queues
// @homepage https://github.com/samliew/SO-mod-userscripts
// @author @samliew
-// @version 3.5
+// @version 3.5.1
//
// @include */admin/dashbo... | 2 |
diff --git a/package.json b/package.json "queue": "*",
"debug": "^4.1.1",
"serialport": "^6.2.2",
- "zigbee-shepherd": "https://github.com/kirovilya/zigbee-shepherd/tarball/1fc9189891e36a6af2fad772c57eccca56f060d4",
+ "zigbee-shepherd": "https://github.com/kirovilya/zigbee-shepherd/commit/13fbc39a2a8528e4d92c1a445c5558... | 3 |
diff --git a/README.md b/README.md @@ -34,29 +34,20 @@ Full deployment documentation is available [here](https://github.com/HospitalRun
6. Copy the `config-example.js` to `config.js` in the folder you cloned the HospitalRun repository. If you already had a CouchDB admin user that you passed into the couch script (`init... | 3 |
diff --git a/website/riot/entry-formatting/display-styles.riot b/website/riot/entry-formatting/display-styles.riot let value = existingData[key] || null
if (elementConfigData[key] != null) {
value = elementConfigData[key]
+ } else if (key === "layout"){
+ if (!value) {
+ value = "inline"
+ }
+ this.props.saveData(this.... | 12 |
diff --git a/token-metadata/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/metadata.json b/token-metadata/0xe2f2a5C287993345a840Db3B0845fbC70f5935a5/metadata.json "symbol": "MUSD",
"address": "0xe2f2a5C287993345a840Db3B0845fbC70f5935a5",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/lib/carto/importer/table_setup.rb b/lib/carto/importer/table_setup.rb @@ -38,7 +38,7 @@ module Carto
AND am.amname = 'gist'
) OR (
a.attname = '#{::Table::CARTODB_ID}'
- AND ir.relname <> '#{origin_table_name}_pkey'
+ AND ir.relname = '#{origin_table_name}_pkey'
)
)
)
| 8 |
diff --git a/test/jasmine/tests/cartesian_interact_test.js b/test/jasmine/tests/cartesian_interact_test.js @@ -440,3 +440,83 @@ describe('axis zoom/pan and main plot zoom', function() {
.then(done);
});
});
+
+describe('Event data:', function() {
+ var gd;
+
+ beforeEach(function() {
+ gd = createGraphDiv();
+ });
+
+ ... | 0 |
diff --git a/docs/en/installation.md b/docs/en/installation.md [https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
<!--email_off-->
-[Unpkg.com](https://unpkg.com) provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use... | 14 |
diff --git a/edit.js b/edit.js @@ -3850,8 +3850,29 @@ class MeshComposer {
}
update() {
if (this.placeMesh) {
- this.placeMesh.position.copy(rigManager.localRig.inputs.leftGamepad.position);
- this.placeMesh.quaternion.copy(rigManager.localRig.inputs.leftGamepad.quaternion);
+ const {position, quaternion} = rigManager.... | 0 |
diff --git a/lib/optimize/ConcatenatedModule.js b/lib/optimize/ConcatenatedModule.js @@ -143,7 +143,7 @@ class ConcatenatedModule extends Module {
this.cacheable = modules.every(m => m.cacheable);
const modulesSet = new Set(modules);
this.reasons = rootModule.reasons.filter(reason => !modulesSet.has(reason.module));
- ... | 2 |
diff --git a/weapons-manager.js b/weapons-manager.js @@ -861,7 +861,9 @@ const _updateWeapons = () => {
inventoryUpdate();
- updateSphere();
+ for (const ticker of tickers) {
+ ticker.update();
+ }
};
/* const cubeMesh = new THREE.Mesh(new THREE.BoxBufferGeometry(0.01, 0.01, 0.01), new THREE.MeshBasicMaterial({
@@ -161... | 0 |
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb @@ -94,9 +94,13 @@ class ApplicationController < ActionController::Base
# use params[:locale] for single-request locale settings,
# otherwise use the session, user's preferred, or site default,
# or application default lo... | 9 |
diff --git a/templates/emails/collective.virtualcard.added.hbs b/templates/emails/collective.virtualcard.added.hbs @@ -5,25 +5,22 @@ Subject: Virtual Card added to {{collective.name}}
<center>
<h1>
- {{host.name}} added a new Virtual Card to {{collective.name}}
+ Virtual Card added for {{collective.name}}
</h1>
</cente... | 7 |
diff --git a/src/components/Plotter/Plotter.js b/src/components/Plotter/Plotter.js @@ -118,6 +118,7 @@ export const Plotter = ({ data, layout={}, xaxis={}, yaxis={}, config={}, margin
useResizeHandler={ true }
style={{ display: "block", height: 350 }}
layout={ {
+ hovermode: "x unified",
// barmode: "overlay",
// barmo... | 7 |
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] I have signed the [Adobe Open Source CLA](https://opensource.adobe.com/cla.html) or I'm an Adobe employee.
-- [ ] I have submitted a [documenta... | 2 |
diff --git a/src/content/getusermedia/getdisplaymedia/js/main.js b/src/content/getusermedia/getdisplaymedia/js/main.js @@ -43,9 +43,9 @@ class ScreenSharing extends LitElement {
height: 100%;
}
video {
- --videoWidth: 100%;
- width: var(--videoWidth);
- height: calc(var(--videoWidth) * (16 / 9));
+ --video-width: 100%;... | 10 |
diff --git a/_includes/meshery.html b/_includes/meshery.html href="https://github.com/layer5io/meshery/blob/master/README.md#running-meshery">Download</a> </h3> -->
<!-- <h4 style="color:aliceblue;">Features</h4> -->
<div class="row">
+ <div id="meshery" class="card-content row">
+ <div class="col s12 m12">
+ <h5 style... | 14 |
diff --git a/bin/schemas.js b/bin/schemas.js **/
'use strict';
const Exception = require('./exception');
+const util = require('./util');
// define what properties are allowed for which types
const validations = {};
@@ -60,11 +61,7 @@ module.exports = {
const exception = Exception('Cannot merge schemas');
const merged ... | 4 |
diff --git a/main/main.js b/main/main.js @@ -64,7 +64,16 @@ function handleCommandLineArguments (argv) {
function createWindow (cb) {
var savedBounds = fs.readFile(path.join(userDataPath, 'windowBounds.json'), 'utf-8', function (e, data) {
- if (e || !data) { // there was an error, probably because the file doesn't exi... | 8 |
diff --git a/token-metadata/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/metadata.json b/token-metadata/0x66fD97a78d8854fEc445cd1C80a07896B0b4851f/metadata.json "symbol": "LMY",
"address": "0x66fD97a78d8854fEc445cd1C80a07896B0b4851f",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js @@ -380,7 +380,7 @@ class ReportActionCompose extends React.Component {
* @param {String} comment
* @param {Boolean} shouldDebounceSaveComment
*/
- updateComment(newComment, shouldDebounceSaveComment) {
+ updateComm... | 10 |
diff --git a/src/components/tabs/__tests__/Tabs.test.js b/src/components/tabs/__tests__/Tabs.test.js @@ -57,7 +57,7 @@ describe('Tabs', () => {
test('tracks most recently clicked tab with "active_tab" prop', () => {
const mockSetProps = jest.fn();
const {container, getByText, rerender} = render(
- <Tabs setProps={mockS... | 12 |
diff --git a/assets/js/googlesitekit/modules/datastore/modules.js b/assets/js/googlesitekit/modules/datastore/modules.js @@ -333,11 +333,9 @@ const baseReducer = ( state, { type, payload } ) => {
}
case RECEIVE_CHECK_REQUIREMENTS_ERROR: {
- const { errorMap } = payload;
-
const checkRequirementsResults = { ...state.che... | 9 |
diff --git a/src/pages/home/report/ReportActionItemMessageEdit.js b/src/pages/home/report/ReportActionItemMessageEdit.js @@ -82,10 +82,8 @@ class ReportActionItemMessageEdit extends React.Component {
this.textInput.setNativeProps({text: newDraft});
this.setState({draft: newDraft});
- /**
- * This component is rendered ... | 14 |
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js fragment: document.createDocumentFragment()
}
+ elementTemplates.noResults = elementTemplates.li.cloneNode(false);
+ elementTemplates.noResults.className = 'no-results';
+
elementTemplates.a.setAttribute('role', 'option');
if (version.major === '4') elementTe... | 5 |
diff --git a/src/TemplateWriter.js b/src/TemplateWriter.js @@ -241,12 +241,16 @@ TemplateWriter.prototype._getCollectionsData = function(activeTemplate) {
collections.all = this._createTemplateMapCopy(
this.collection.getAllSorted(activeTemplate)
);
+ debug(`Collection: collections.all has ${collections.all.length} ite... | 0 |
diff --git a/ui/page/livestreamSetup/view.jsx b/ui/page/livestreamSetup/view.jsx @@ -28,6 +28,7 @@ export default function LivestreamSetupPage(props: Props) {
const [sigData, setSigData] = React.useState({ signature: undefined, signing_ts: undefined });
const [showHelpTest, setShowHelpTest] = usePersistedState('livestr... | 7 |
diff --git a/code/js/modules/Sitelist.js b/code/js/modules/Sitelist.js "plex": { name: "Plex", url: "http://www.plex.tv" },
"pluralsight": { name: "Pluralsight", url: "https://app.pluralsight.com" },
"pocketcasts": { name: "Pocketcasts", url: "https://play.pocketcasts.com" },
- "y.qq.com/portal/player.html": { name: "Q... | 10 |
diff --git a/webaverse.js b/webaverse.js @@ -382,6 +382,8 @@ export default class Webaverse extends EventTarget {
world.appManager.pretick(timestamp, frame);
ioManager.update(timeDiffCapped);
+ cameraManager.update(timeDiffCapped);
+
// universe.update();
if (this.contentLoaded) {
// if (controlsManager.isPossessed()) ... | 0 |
diff --git a/README.md b/README.md @@ -41,7 +41,7 @@ For more information surrounding configuration, compiling and other developer do
### Disclaimer
*This project is NOT affiliated with Apple in any way shape or form. The project is open source and free to use (with an Apple Music subscription)
-for any legal concerns ... | 3 |
diff --git a/src/Services/Air/AirParser.js b/src/Services/Air/AirParser.js @@ -432,7 +432,8 @@ const AirErrorHandler = function (obj) {
};
const airGetTicket = function (obj) {
- const passengersList = obj['air:ETR'][`common_${this.uapi_version}:BookingTraveler`];
+ const etr = obj['air:ETR'];
+ const passengersList = ... | 0 |
diff --git a/app/shared/containers/Global/Blockchain/Dropdown.js b/app/shared/containers/Global/Blockchain/Dropdown.js @@ -36,6 +36,7 @@ class GlobalBlockchainDropdown extends Component<Props> {
blockchains,
selection,
settings,
+ style,
t,
} = this.props;
let defaultLocString = 'global_account_select_blockchain_defaul... | 11 |
diff --git a/packages/openneuro-server/Dockerfile b/packages/openneuro-server/Dockerfile @@ -11,6 +11,8 @@ FROM node:12.18.2-alpine3.12 AS server
COPY --from=build /srv/node_modules /srv/node_modules
COPY --from=build /srv/packages/openneuro-server/dist /srv/dist
+COPY --from=build /srv/packages/openneuro-server/src/li... | 1 |
diff --git a/cypress/v1.0/documentation/1-Commands/35-location.md b/cypress/v1.0/documentation/1-Commands/35-location.md slug: location
excerpt: Get the `window.location`
-Get the `window.location`.
+Get the remote `window.location` as a normalized object.
+
+| | |
+|--- | --- |
+| **Returns** | location object detaile... | 7 |
diff --git a/generators/server/templates/src/main/java/package/web/rest/GatewayResource.java.ejs b/generators/server/templates/src/main/java/package/web/rest/GatewayResource.java.ejs @@ -27,6 +27,8 @@ import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.cloud.netflix.zuul.filter... | 11 |
diff --git a/blockchain.js b/blockchain.js @@ -120,7 +120,7 @@ const runSidechainTransaction = mnemonic => async (contractName, method, ...args
{
name: 'geth',
networkId: 1,
- chainId: 1337,
+ chainId: isMainChain ? 1338 : 1337,
},
'petersburg',
),
| 0 |
diff --git a/src/converter/r2t/ImportEntities.js b/src/converter/r2t/ImportEntities.js @@ -66,6 +66,7 @@ export default class ImportEntities {
const entityIds = Object.keys(entities)
let refList = dom.find('ref-list')
+ refList.empty()
entityIds.forEach(entityId => {
const entity = entities[entityId].toJSON()
@@ -186,7... | 7 |
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
-<!ENTITY version-java-client "5.4.3">
+<!ENTITY version-java-client "5.5.0">
<... | 12 |
diff --git a/pic.js b/pic.js @@ -112,6 +112,14 @@ export const genPic = async ({
player.avatar.inputs.hmd.position.y = player.avatar.height;
player.avatar.inputs.hmd.quaternion.setFromAxisAngle(new THREE.Vector3(0, 1, 0), Math.PI);
player.avatar.inputs.hmd.updateMatrixWorld();
+ player.addAction({
+ type: 'emote',
+ em... | 0 |
diff --git a/src/components/routes/checkout/CreditCard.vue b/src/components/routes/checkout/CreditCard.vue </el-form-item>
<el-form-item size="mini">
- <el-checkbox :checked="true">{{ $t('card.sameAddress') }}</el-checkbox>
+ <el-checkbox v-model="sameAddress">
+ {{ $t('card.sameAddress') }}
+ </el-checkbox>
</el-form-... | 9 |
diff --git a/token-metadata/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/metadata.json b/token-metadata/0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9/metadata.json "symbol": "MKCY",
"address": "0xF3281c539716a08c754EC4C8F2B4cEe0faB64BB9",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/articles/libraries/auth0js/v9/index.md b/articles/libraries/auth0js/v9/index.md @@ -262,7 +262,7 @@ webAuth.passwordlessStart({
### Verify passwordless
-If sending a code, you will then need to prompt the user to enter that code. You will process the code, and authenticate the user, with the `passwordlessV... | 10 |
diff --git a/package.json b/package.json {
"name": "docs",
- "version": "0.0.0",
- "description": "tbc",
+ "version": "1.0.0",
+ "description": "Documentation for the Ghost publishing platform",
"repository": "git@github.com:TryGhost/docs.git",
"author": "Ghost Foundation",
"license": "MIT",
| 12 |
diff --git a/CHANGELOG.md b/CHANGELOG.md # Buttercup browser extension changelog
+## v2.25.0
+_2022-06-02_
+
+ * Buttercup upgrade: v6
+ * Improved Dropbox/Google Drive integrations
+ * Improved vault stability and performance
+ * Improved support for Vault Format B
+ * Removed My Buttercup integration
+ * Vault editor... | 6 |
diff --git a/test/TemplateTest.js b/test/TemplateTest.js @@ -1138,6 +1138,26 @@ test("Test a transform", async t => {
t.is(renders[0], "OVERRIDE BY A TRANSFORM");
});
+// #789: https://github.com/11ty/eleventy/issues/789
+test.skip("Test a transform (does it have inputPath?)", async t => {
+ t.plan(3);
+
+ let tmpl = n... | 0 |
diff --git a/src/encoded/static/components/search.js b/src/encoded/static/components/search.js @@ -1012,10 +1012,6 @@ const ResultTable = search.ResultTable = createReactClass({
childContextTypes: { actions: PropTypes.array },
- contextTypes: {
- session: React.PropTypes.object,
- },
-
getDefaultProps: function () {
re... | 2 |
diff --git a/app/components/Composer.jsx b/app/components/Composer.jsx @@ -78,7 +78,7 @@ class Composer extends Component {
});
renderProcess.on('postStatusComplete', (event, response) => {
- const { id_str, user, } = response;
+ const { id_str, user, } = response; /* eslint camelcase: 0 */
notificationManager.send(
lo... | 8 |
diff --git a/test/unit/specs/main.spec.js b/test/unit/specs/main.spec.js @@ -22,6 +22,10 @@ jest.mock("fs-extra", () => {
"./app/networks/basecoind-2/basecoindversion.txt",
fs.readFileSync("./app/networks/basecoind-2/basecoindversion.txt", "utf8")
)
+ mockFs.writeFile(
+ "~/repo/gaia",
+ "THIS IS THE GAIA BINARY. IT IS... | 12 |
diff --git a/README.md b/README.md Visualize distributed tracing with Jaeger.
+
+
+
+
## Contributing
See [CONTRIBUTING](./CONTRIBUTING.md).
| 0 |
diff --git a/publish/src/commands/fork.js b/publish/src/commands/fork.js @@ -9,15 +9,19 @@ const forkChain = async ({ network }) => {
console.log(`Forking ${network}...`);
- const protocolDaoAddress = getUsers({ network, user: 'owner' }).address;
- console.log(`Unlocking account ${protocolDaoAddress} (protocolDAO)`);
+... | 11 |
diff --git a/readme.md b/readme.md @@ -4,6 +4,14 @@ _Create the next immutable state tree by simply modifying the current tree_
---
+[](https://travis-ci.org/mweststrate/immer)
+[ {
done();
});
});
-
});
});
+
+ it('should not throw during hover when out-of-range pts are present in *albers usa* map', function(done) {
+ var gd = createGraphDiv();
+ var f... | 0 |
diff --git a/src/common/blockchain/interface-blockchain/transactions/pending/Transactions-Pending-Queue.js b/src/common/blockchain/interface-blockchain/transactions/pending/Transactions-Pending-Queue.js @@ -67,22 +67,15 @@ class TransactionsPendingQueue {
analyseMissingNonce(i){
- if( typeof this.listArray[i+1] !== "un... | 7 |
diff --git a/edit.js b/edit.js @@ -2156,6 +2156,16 @@ const _makeChunkMesh = (seedString, parcelSize, subparcelSize) => {
currentVegetationMesh.freeSlabIndex(index);
currentVegetationTransparentMesh.freeSlabIndex(index);
+ const subparcelVegetationMeshesSpec = mesh.vegetationMeshes[index];
+ if (subparcelVegetationMesh... | 0 |
diff --git a/shaders.js b/shaders.js @@ -841,6 +841,173 @@ const damageMaterial = new THREE.ShaderMaterial({
// polygonOffsetUnits: 1,
});
+const activateMaterial = new THREE.ShaderMaterial({
+ uniforms: {
+ uTime: {
+ type: 'f',
+ value: 0,
+ needsUpdate: true,
+ },
+ },
+ vertexShader: `\
+ precision highp float;
+ p... | 0 |
diff --git a/admin-base/ui.apps/src/main/js/stateActions/editComponent.js b/admin-base/ui.apps/src/main/js/stateActions/editComponent.js @@ -28,7 +28,7 @@ let log = LoggerFactory.logger('editComponent').setLevelDebug()
import { set } from '../utils'
function bringUpEditor(me, view, target) {
- log.debug('Bring Up Edito... | 12 |
diff --git a/src/webview/spellchecker.js b/src/webview/spellchecker.js @@ -85,7 +85,7 @@ export function disable() {
}
export function getSpellcheckerLocaleByFuzzyIdentifier(identifier) {
- const locales = Object.keys(SPELLCHECKER_LOCALES).filter(key => key.split('-')[0] === identifier);
+ const locales = Object.keys(S... | 7 |
diff --git a/test/Request/Request.test.js b/test/Request/Request.test.js @@ -31,6 +31,19 @@ const serviceParams = [
() => ({}),
];
+const serviceParamsReturningString = [
+ 'URL',
+ {
+ username: 'USERNAME',
+ password: 'PASSWORD',
+ },
+ templates.lowFareSearch,
+ null,
+ () => ({}),
+ () => ({}),
+ () => '',
+];
+
co... | 0 |
diff --git a/src/app/Http/Controllers/CrudController.php b/src/app/Http/Controllers/CrudController.php @@ -64,7 +64,7 @@ class CrudController extends BaseController
$this->crud->hasAccessOrFail('list');
$this->data['crud'] = $this->crud;
- $this->data['title'] = ucfirst($this->crud->entity_name_plural);
+ $this->data['... | 14 |
diff --git a/lib/schemaUtils.js b/lib/schemaUtils.js @@ -2911,7 +2911,7 @@ module.exports = {
return async.map(reqHeaders, (pHeader, cb) => {
let mismatches = [],
- index = _.findIndex(reqHeaders, pHeader);
+ index = _.findIndex(headers, pHeader); // find actual index from collection request headers
const schemaHeader ... | 4 |
diff --git a/app/addons/documents/assets/less/query-options.less b/app/addons/documents/assets/less/query-options.less #query-options-tray {
width: 490px;
padding-top: 6px;
+ max-height: calc(100vh - 64px);
+ overflow-y: scroll;
.query-group:first-child {
margin-top: 0;
| 0 |
diff --git a/src/main/java/org/cboard/jdbc/JdbcDataProvider.java b/src/main/java/org/cboard/jdbc/JdbcDataProvider.java @@ -399,6 +399,12 @@ public class JdbcDataProvider extends DataProvider implements Aggregatable, Init
List<ColumnIndex> dimensionList = dimStream.map(ColumnIndex::fromDimensionConfig).collect(Collector... | 14 |
diff --git a/src/components/play-mode/infobox/Infobox.jsx b/src/components/play-mode/infobox/Infobox.jsx @@ -10,13 +10,25 @@ import {getRenderer} from '../../../../renderer.js';
import easing from '../../../../easing.js';
import {createObjectSprite} from '../../../../object-spriter.js'; */
import loadoutManager from '.... | 0 |
diff --git a/packages/insight/src/components/latest-blocks/latest-blocks.ts b/packages/insight/src/components/latest-blocks/latest-blocks.ts @@ -65,7 +65,8 @@ export class LatestBlocksComponent implements OnInit, OnDestroy {
(block: ApiEthBlock & ApiUtxoCoinBlock) => {
if (
this.chainNetwork.chain === 'BTC' ||
- this.c... | 3 |
diff --git a/src/components/general/inventory/Inventory.jsx b/src/components/general/inventory/Inventory.jsx @@ -117,7 +117,6 @@ export const Inventory = () => {
})();
const open = state.openedPanel === 'CharacterPanel';
- // const targetObject = selectObject || hoverObject;
const onMouseEnter = object => () => {
setHo... | 2 |
diff --git a/html/settings/_settings.scss b/html/settings/_settings.scss @@ -1263,21 +1263,21 @@ $sprk-radio-input-opacity: 0 !default;
/// The transition for the radio input.
$sprk-radio-input-transition: all 0.2s ease-in-out !default;
/// The border of the outer circle in the radio input on hover.
-$sprk-radio-input-... | 3 |
diff --git a/animations-baker.js b/animations-baker.js @@ -330,9 +330,11 @@ const baker = async (uriPath = '', fbxFileNames, vpdFileNames, outFile) => {
const rootBone = object; // not really a bone
const leftFootBone = bones.find(b => b.name === 'mixamorigLeftFoot');
const rightFootBone = bones.find(b => b.name === 'm... | 2 |
diff --git a/NiL.JS/Expressions/Addition.cs b/NiL.JS/Expressions/Addition.cs @@ -215,11 +215,15 @@ namespace NiL.JS.Expressions
}
case JSValueType.Object:
case JSValueType.Function:
- case JSValueType.Date:
{
tstr = new RopeString(tstr, second.ToPrimitiveValue_Value_String().BaseToString());
break;
}
+ case JSValueType... | 1 |
diff --git a/app/main.js b/app/main.js @@ -35,6 +35,8 @@ let userInfo = {
const dbStructWallet = "CREATE TABLE wallet (id INTEGER PRIMARY KEY AUTOINCREMENT, pk TEXT, addr TEXT UNIQUE, lastbalance REAL, name TEXT);";
// FIXME: dbStructContacts is unused
const dbStructContacts = "CREATE TABLE contacts (id INTEGER PRIMARY... | 6 |
diff --git a/state.js b/state.js @@ -8,7 +8,7 @@ export const state = {
name: '',
avatar: null,
isMic: false,
- equipped: []
+ equipped: [],
},
inventory: {
items: [],
@@ -17,7 +17,8 @@ export const state = {
selectedFileName: null,
},
world: {
- peers: []
+ peers: [],
+ selectedPeerId: null,
},
},
weaponWheel: {
| 0 |
diff --git a/detox/ios/Detox/GREYActions+Detox.m b/detox/ios/Detox/GREYActions+Detox.m #import <Foundation/Foundation.h>
#import "GREYActions+Detox.h"
#import <EarlGrey/GREYActions.h>
+#import <EarlGrey/NSObject+GREYAdditions.h>
+#import <EarlGrey/GREYAppleInternals.h>
@import AudioToolbox;
@import ObjectiveC;
-@interf... | 7 |
diff --git a/components/rocket/rocketController.js b/components/rocket/rocketController.js @@ -11,7 +11,7 @@ import users from '../users'
import crypto from '../crypto'
import axiosApi from '../axios'
import inviteUserToChannelQueue from '../queues/inviteUserToChannelQueue'
-import userStatusChange from '../queues/user... | 3 |
diff --git a/token-metadata/0x9556f8ee795D991fF371F547162D5efB2769425F/metadata.json b/token-metadata/0x9556f8ee795D991fF371F547162D5efB2769425F/metadata.json "symbol": "DMME",
"address": "0x9556f8ee795D991fF371F547162D5efB2769425F",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/server/src/analytics/flight.js b/server/src/analytics/flight.js import App from "../app";
import heap from "../helpers/heap";
-App.on("startFlight", ({ id, name, simulators }) => {
+App.on("startFlight", ({ name, simulators }) => {
heap.track("startFlight", App.thoriumId, {
- id,
name,
...simulators.reduce... | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.