code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/infra/token-transfer-client/src/components/StakeModal.js b/infra/token-transfer-client/src/components/StakeModal.js @@ -28,7 +28,7 @@ class StakeModal extends React.Component {
>
<div className="stake-modal-content d-flex flex-column d-flex align-items-center justify-content-end">
<div className="stake-mod... | 7 |
diff --git a/animations-baker.js b/animations-baker.js @@ -383,7 +383,7 @@ const baker = async (uriPath = '', fbxFileNames, vpdFileNames, outFile) => {
rightFootYDeltas[i] = rightFootYDelta;
}
- const range = 0.0175;
+ const range = /sneak/i.test(walkAnimationName) ? 0.3 : 0.05;
let leftMin = Infinity;
let leftMax = -I... | 0 |
diff --git a/translations/en-us.yaml b/translations/en-us.yaml @@ -4735,7 +4735,7 @@ clusterNew:
even: Setting {count} etcd nodes is a waste of hardware because it doesn't increase the quorum until you have an odd number.
noEtcd: The number of etcd nodes should not be less than 1.
windowsSupport:
- deprecated: Windows ... | 3 |
diff --git a/lib/linters/newline_after_block.js b/lib/linters/newline_after_block.js 'use strict';
-const hasNewline = require('../utils/has-newline');
-
module.exports = {
name: 'newlineAfterBlock',
nodeTypes: ['atrule', 'rule'],
@@ -10,9 +8,6 @@ module.exports = {
lint: function newlineAfterBlockLinter (config, node)... | 7 |
diff --git a/app/main.js b/app/main.js @@ -40,7 +40,11 @@ app.on('ready', () => {
// Download files
session.defaultSession.on('will-download', (event, item) => {
let location = dialog.showSaveDialog({ defaultPath: item.getFilename() })
+ if (location) {
item.setSavePath(location)
+ } else {
+ event.preventDefault()
+ }... | 9 |
diff --git a/src/common.cc b/src/common.cc @@ -197,7 +197,8 @@ namespace sharp {
imageType = ImageType::HEIF;
} else if (EndsWith(loader, "PdfBuffer")) {
imageType = ImageType::PDF;
- } else if (EndsWith(loader, "MagickBuffer")) {
+ } else if (EndsWith(loader, "MagickBuffer") ||
+ EndsWith(loader, "Magick7Buffer")) {
i... | 0 |
diff --git a/components/admin/tags/TagsForm.js b/components/admin/tags/TagsForm.js @@ -13,6 +13,8 @@ import Select from 'components/form/SelectInput';
import GraphService from 'services/GraphService';
const graphOptions = {
+ height: '100%',
+ width: '100%',
layout: {
hierarchical: false
},
@@ -59,11 +61,14 @@ class Ta... | 4 |
diff --git a/helpers/wrapper/test/Wrapper-unit.js b/helpers/wrapper/test/Wrapper-unit.js @@ -44,6 +44,18 @@ contract('Wrapper Unit Tests', async accounts => {
.encodeABI()
await mockWeth.givenMethodReturnBool(weth_approve, true)
+ // mock the weth.allowance method
+ let weth_allowance = wethTemplate.contract.methods
+ ... | 3 |
diff --git a/src/trumbowyg.js b/src/trumbowyg.js @@ -1255,7 +1255,10 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', {
const VALID_LINK_PREFIX = /^([a-z][-+.a-z0-9]*:|\/|#)/i;
if(VALID_LINK_PREFIX.test(url)) { return url; }
- return url.includes("@") ? `mailto:${url}` : `http://${url}`;
+ const SIMPLE_EMAI... | 11 |
diff --git a/src/index.js b/src/index.js -import { createStore, combineReducers, bindActionCreators } from 'redux';
+import { createStore, combineReducers, bindActionCreators, applyMiddleware } from 'redux';
import Immutable from 'immutable';
import { createProvider } from 'react-redux';
import React, { Component } fro... | 0 |
diff --git a/data/scripts/model.py b/data/scripts/model.py @@ -234,8 +234,8 @@ def assess_model(params, data, cases):
# Any parameters given in guess are fit. The remaining are fixed and set by DefaultRates
def fit_params(key, time_points, data, guess, bounds=None):
- # if key not in POPDATA:
- # return Params(None, No... | 1 |
diff --git a/lib/routes.js b/lib/routes.js @@ -42,6 +42,7 @@ routes
.add('questionnaireCrowd', `/umfrage/:slug(${routes.questionnaireCrowdSlug})`)
.add('questionnaire', '/umfrage/:slug')
.add('events', '/veranstaltungen')
+ .add('event', '/veranstaltung/:slug', 'events')
.add('faq', '/faq')
.add('feed', '/feed')
.add('... | 13 |
diff --git a/deepfence_ui/app/scripts/components/vulnerability-view/vulnerability-modal/index.jsx b/deepfence_ui/app/scripts/components/vulnerability-view/vulnerability-modal/index.jsx @@ -67,7 +67,17 @@ export const VulnerabilityModal = ({
<ModalBody>
<div className={styles.modalBodyColumnsWrapper}>
<div className={st... | 3 |
diff --git a/src/botPage/view/View.js b/src/botPage/view/View.js @@ -89,8 +89,6 @@ const addBalanceForToken = token => {
});
};
-const chart = new Chart(api);
-
const tradingView = new TradingView();
const showRealityCheck = () => {
@@ -212,7 +210,9 @@ const updateTokenList = () => {
$('.account-type').text(`${prefix}`... | 3 |
diff --git a/packages/workbox-build/src/lib/generate-sw.js b/packages/workbox-build/src/lib/generate-sw.js @@ -96,6 +96,9 @@ const generateSW = function(input) {
}
// Type check input so that defaults can be used if appropriate.
+ if (typeof input.globIgnores === 'string') {
+ input.globIgnores = [input.globIgnores];
+... | 11 |
diff --git a/packages/yoroi-extension/chrome/extension/ergo-connector/api.js b/packages/yoroi-extension/chrome/extension/ergo-connector/api.js @@ -65,7 +65,7 @@ export async function connectorGetBalance(
pendingTxs: PendingTransaction[],
tokenId: TokenId
): Promise<Value> {
- if (tokenId === 'ERG' || tokenId === 'ADA')... | 11 |
diff --git a/src/lib/userStorage/FeedStorage.js b/src/lib/userStorage/FeedStorage.js @@ -90,6 +90,8 @@ export class FeedStorage {
feedQ: {} = {}
+ profilesCache = {}
+
isEmitEvents = true
db: ThreadDB
@@ -443,7 +445,6 @@ export class FeedStorage {
async getCounterParty(feedEvent) {
let addressField
- const { Profiles }... | 0 |
diff --git a/app-manager.js b/app-manager.js @@ -409,8 +409,8 @@ class AppManager extends EventTarget {
trackedApp.set('quaternion', quaternion);
trackedApp.set('scale', scale);
trackedApp.set('components', JSON.stringify(components));
- const originalJson = trackedApp.toJSON();
- trackedApp.set('originalJson', JSON.st... | 2 |
diff --git a/package.json b/package.json "start": "bash ./node_modules/terriajs-server/run_server.sh --config-file devserverconfig.json",
"stop": "bash ./node_modules/terriajs-server/stop_server.sh",
"gulp": "gulp",
- "postinstall": "echo 'Installation with NPM successful. What to do next:\\n npm start # Starts the ser... | 7 |
diff --git a/lib/model.js b/lib/model.js @@ -77,7 +77,7 @@ Model.prototype.initStore = function() {
// LevelUP ; the safety we have here to re-use instance is right now only because of the tests
this.store = stores[path.resolve(filename)];
- this.store = stores[path.resolve(filename)] = (this.store && this.store.isOpen... | 1 |
diff --git a/public/app/style.scss b/public/app/style.scss @@ -231,6 +231,7 @@ header {
.list--episodes {
margin-top: 71px;
+ overflow-x: hidden;
overflow-y: scroll;
height: calc(100% - 71px);
}
@@ -384,9 +385,10 @@ cbus-episode {
width: 100%;
height: $height;
+ position: relative;
background-color: $white;
- position:... | 7 |
diff --git a/src/map/handler/Map.Drag.js b/src/map/handler/Map.Drag.js @@ -174,7 +174,15 @@ class MapDragHandler extends Handler {
}
if (this._rotateMode.indexOf('rotate') >= 0 && map.options['dragRotate']) {
- const bearing = map.getBearing() - 0.6 * (this.preX - mx);
+ let bearing;
+ if (map.options['dragPitch'] || d... | 3 |
diff --git a/new-client/src/components/App.js b/new-client/src/components/App.js @@ -156,8 +156,9 @@ class App extends React.PureComponent {
mapClickDataResult: {},
// Drawer-related states
- drawerVisible: false,
- drawerPermanent: false,
+ drawerVisible: props.config.mapConfig.map.drawerVisibleAtStart || false,
+ dra... | 11 |
diff --git a/src/traces/splom/index.js b/src/traces/splom/index.js @@ -198,7 +198,7 @@ function plotOne(gd, cd0) {
// TODO splom 'needs' the grid component, register it here?
-function hoverPoints(pointData, xval, yval, hovermode) {
+function hoverPoints(pointData, xval, yval) {
var cd = pointData.cd;
var trace = cd[0]... | 2 |
diff --git a/token-metadata/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/metadata.json b/token-metadata/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/metadata.json "symbol": "DF",
"address": "0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/compat/src/index.js b/compat/src/index.js import { render as preactRender, cloneElement as preactCloneElement, createRef, h, Component, options, toChildArray, createContext, Fragment } from 'preact';
import * as hooks from 'preact/hooks';
export * from 'preact/hooks';
+import { assign } from '../../src/uti... | 14 |
diff --git a/public/css/main.css b/public/css/main.css @@ -197,47 +197,6 @@ footer {
top:1px;
}
-@media only screen and (max-width: 767px) {
- .navbar-right {
- float: none !important;
- }
-
- .navbar-nav {
- background-color: white;
- box-shadow: 0px 2px 5px darkgrey;
- border-left: 1px solid #e7e7e7;
- border-right: ... | 7 |
diff --git a/README.md b/README.md @@ -122,6 +122,41 @@ A repo that demonstrates how to build plotly.js with Webpack can be found [here]
...
```
+#### Building plotly.js with Angular CLI
+
+Currently Angular CLI use Webpack under the hood to bundle and build your Angular application.
+Sadly it doesn't allow to override... | 0 |
diff --git a/Source/Scene/ModelExperimental/PickingPipelineStage.js b/Source/Scene/ModelExperimental/PickingPipelineStage.js @@ -38,8 +38,6 @@ PickingPipelineStage.process = function (
var model = renderResources.model;
var instances = runtimeNode.node.instances;
- shaderBuilder.addDefine("USE_PICKING", undefined, Shad... | 1 |
diff --git a/packages/app/src/server/models/page-operation.ts b/packages/app/src/server/models/page-operation.ts @@ -52,7 +52,7 @@ export type PageOperationDocumentHasId = PageOperationDocument & { _id: ObjectId
export interface PageOperationModel extends Model<PageOperationDocument> {
findByIdAndUpdatePageActionStage(... | 7 |
diff --git a/app/shared/components/Global/Form/Field/Key/Public.js b/app/shared/components/Global/Form/Field/Key/Public.js @@ -63,7 +63,8 @@ class GlobalFormFieldKeyPublic extends Component<Props> {
label,
loading,
name,
- t
+ t,
+ width
} = this.props;
const {
@@ -95,6 +96,7 @@ class GlobalFormFieldKeyPublic extends C... | 11 |
diff --git a/token-metadata/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/metadata.json b/token-metadata/0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54/metadata.json "symbol": "TDEX",
"address": "0xc5e19Fd321B9bc49b41d9a3a5ad71bcc21CC3c54",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/src/tom-select.js b/src/tom-select.js @@ -235,7 +235,7 @@ export default class TomSelect extends MicroPlugin(MicroEvent){
var target_match = parentMatch(e.target, '[data-selectable]', dropdown);
if( target_match ){
- return self.onOptionHover.call(self, target_match );
+ return self.onOptionHover.call(self... | 13 |
diff --git a/Documentation/Contributors/TestingGuide/README.md b/Documentation/Contributors/TestingGuide/README.md @@ -106,7 +106,7 @@ However, many users build apps using the built Cesium.js in `Build/Cesium` (whic
The **Run All Tests against Combined File with Debug Code Removed** is the same except it is for use wit... | 1 |
diff --git a/packages/components/types/components/Spacer.d.ts b/packages/components/types/components/Spacer.d.ts @@ -66,9 +66,20 @@ export declare type SpacerProps = {
*
* @example
* ```jsx
+ * // Adding space for elements.
* <Spacer py={10}>
* <View>...</View>
* </Spacer>
* ```
+ *
+ * @example
+ * ```jsx
+ * // Addin... | 7 |
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md @@ -37,6 +37,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
* [Erik Andersson](https://github.com/erikmaarten)
* [Austin Eng](https://github.com/austinEng)
* [Shehzan Mohammed](https://github.com/shehzan10)
+ * [Rachel Hwang](https://... | 3 |
diff --git a/token-metadata/0x5aCD07353106306a6530ac4D49233271Ec372963/metadata.json b/token-metadata/0x5aCD07353106306a6530ac4D49233271Ec372963/metadata.json "symbol": "ETY",
"address": "0x5aCD07353106306a6530ac4D49233271Ec372963",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/common/lib/util/logger.ts b/common/lib/util/logger.ts @@ -8,8 +8,8 @@ enum LogLevels {
Micro = 4,
}
-function pad(str: unknown, three?: number) {
- return ('000' + str).slice(-2-(three || 0));
+function pad(timeSegment: number, three?: number) {
+ return `${timeSegment}`.padStart(three ? 3 : 2, '0');
}
fun... | 7 |
diff --git a/src/plugins/Webcam/index.js b/src/plugins/Webcam/index.js @@ -238,9 +238,7 @@ module.exports = class Webcam extends Plugin {
this.captureInProgress = false
const dashboard = this.uppy.getPlugin('Dashboard')
if (dashboard) dashboard.hideAllPanels()
- return this.uppy.addFile(tagFile).catch(() => {
- // Igno... | 2 |
diff --git a/test_apps/test_app/embark.json b/test_apps/test_app/embark.json "css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
"js/app.js": ["app/js/index.js"],
- "js/test.js": ["app/js/_vendor/jquery.min.js", "app/js/_vendor/async.min.js", "app/js/test.js", "app/js/non_existant_file.js"],
+ "js/test.js": ["... | 2 |
diff --git a/ui/app/components/pages/confirm-transaction-base/confirm-transaction-base.component.js b/ui/app/components/pages/confirm-transaction-base/confirm-transaction-base.component.js @@ -348,6 +348,9 @@ export default class ConfirmTransactionBase extends Component {
title = tokenToSend ? `${txParams.value} ${toke... | 12 |
diff --git a/Source/Core/TimeInterval.js b/Source/Core/TimeInterval.js /*global define*/
define([
+ './Check',
'./defaultValue',
'./defined',
'./defineProperties',
- './DeveloperError',
'./freezeObject',
'./JulianDate'
], function(
+ Check,
defaultValue,
defined,
defineProperties,
- DeveloperError,
freezeObject,
Julian... | 14 |
diff --git a/app_web/src/logic/uimodel.js b/app_web/src/logic/uimodel.js @@ -44,7 +44,7 @@ class UIModel
pluck('newValue'),
map( environmentName => this.app.environments[environmentName].hdr_path)
);
- const initialEnvironment = "footprint_court";
+ const initialEnvironment = "footprint_court_512";
this.app.selectedEnv... | 4 |
diff --git a/app/models/taxon_change.rb b/app/models/taxon_change.rb @@ -98,7 +98,7 @@ class TaxonChange < ActiveRecord::Base
end
def input_taxa
- [taxon]
+ [taxon].compact
end
def output_taxa
@@ -178,7 +178,10 @@ class TaxonChange < ActiveRecord::Base
page = 1
loop do
results = Identification.elastic_paginate(
- filte... | 1 |
diff --git a/app/index.js b/app/index.js @@ -12,6 +12,8 @@ const sanitizeOpts = require('./sanitizeOpts')
app.use(session({
secret: 'alsdjfwernfeklbjweiugerpfiorq3jlkhewfbads',
+ saveUninitialized: true,
+ resave: true
}))
app.use('/front.min.js', browserify(__dirname + '/front.js'))
| 2 |
diff --git a/token-metadata/0x66186008C1050627F979d464eABb258860563dbE/metadata.json b/token-metadata/0x66186008C1050627F979d464eABb258860563dbE/metadata.json "symbol": "MDS",
"address": "0x66186008C1050627F979d464eABb258860563dbE",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/utils/Utils.js b/src/utils/Utils.js @@ -94,6 +94,9 @@ class Utils {
cloneResult[i] = this.clone(source[i])
}
return cloneResult
+ } else if (Object.prototype.toString.call(source) === '[object Null]') {
+ // fixes an issue where null values were converted to {}
+ return null
} else if (typeof source ==... | 1 |
diff --git a/templates/registration/profile.html b/templates/registration/profile.html {% block content %}
-
- <h3>User Registration/Profile</h3>
+<div class ="container">
+ <!-- Sub navigation -->
+ <div class="sub-navigation">
+ <div class="sub-navigation-header">
+ <h4 class="page-title">User Registration/Profile</h... | 3 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -309,11 +309,24 @@ const loadPromise = (async () => {
}
})(),
(async () => {
+ const audioTimeoutTime = 5 * 1000;
const _loadSoundFiles = (fileNames, soundType) => Promise.all(fileNames.map(async fileName => {
const audio = new Audio();
const p = new Promise((acce... | 0 |
diff --git a/app/i18n/locales/en-US.json b/app/i18n/locales/en-US.json "wallet.navigation.receive": "Receive",
"wallet.navigation.send": "Send",
"wallet.navigation.transactions": "Transactions",
- "wallet.receive.page.addressCopyNotificationMessage": "You have successfully copied wallet address",
+ "wallet.receive.page... | 7 |
diff --git a/src/generators/overflow.js b/src/generators/overflow.js @@ -7,7 +7,7 @@ export default function() {
'mask': { overflow: 'hidden' },
'overflow-visible': { overflow: 'visible' },
'overflow-scroll': { overflow: 'scroll' },
- 'overflow-scroll-x': { 'overflow-x': 'auto', '-ms-overflow-style': '-ms-autohiding-sc... | 10 |
diff --git a/Source/Scene/Camera.js b/Source/Scene/Camera.js @@ -2986,7 +2986,7 @@ Camera.prototype.getPickRay = function (windowPosition, result) {
const scene = this._scene;
const frustum = this.frustum;
- if (scene.canvas.style["display"] === "none") {
+ if (defined(scene.canvas.style) && scene.canvas.style["display... | 3 |
diff --git a/src/components/general/character-select/CharacterSelect.jsx b/src/components/general/character-select/CharacterSelect.jsx @@ -7,8 +7,9 @@ import { AppContext } from '../../app';
import { MegaHup } from '../../../MegaHup.jsx';
import { LightArrow } from '../../../LightArrow.jsx';
import { world } from '../.... | 0 |
diff --git a/src/js/wallet/wallet.deposit.controller.js b/src/js/wallet/wallet.deposit.controller.js deposit.refreshUri = function () {
var params = null;
- if (deposit.bitcoinAmount > 0) {
+ if (deposit.bitcoinAmount >= 0.01) {
params = {
amount: deposit.bitcoinAmount
};
| 12 |
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.5.1">
+<!ENTITY version-java-client "5.5.2">
<... | 12 |
diff --git a/includes/Modules/Search_Console.php b/includes/Modules/Search_Console.php @@ -127,7 +127,6 @@ final class Search_Console extends Module implements Module_With_Screen, Module_
// GET.
'sites' => 'webmasters',
'matched-sites' => 'webmasters',
- 'index-status' => 'webmasters',
'searchanalytics' => 'webmasters... | 2 |
diff --git a/commands/remote.js b/commands/remote.js @@ -10,9 +10,9 @@ module.exports = {
cmd: function(bosco) {
// The attached is unashamedly default TES config, you need to replace it with your own in the bosco.config
var defaultConfig = {
- localConfigurationFiles: ['default.json', 'local.json'],
- likelyHostConfig... | 7 |
diff --git a/jazz_codeq/index.js b/jazz_codeq/index.js @@ -64,7 +64,7 @@ function handler(event, context, cb) {
const output = responseObj(data.get_codeq_report, serviceContext.query);
return cb(null, output);
}).catch(err => {
- const output = factory.getReportOnError(err, metrics, config, serviceContext);
+ const out... | 10 |
diff --git a/articles/guides/login/universal-vs-embedded.md b/articles/guides/login/universal-vs-embedded.md @@ -64,9 +64,7 @@ Embedded logins in web apps with Auth0 use [Cross-Origin Authentication](/cross-
Cross-origin authentication is only necessary when authenticating against a directory using a username and passw... | 3 |
diff --git a/app/components/Features/Grandpa/index.js b/app/components/Features/Grandpa/index.js @@ -18,21 +18,14 @@ import Transfer from './TransferForm';
import Info from '@material-ui/icons/Info';
import GrandpaInfo from 'components/Information/Grandpa';
-import { FormattedMessage } from 'react-intl';
-
-import mess... | 3 |
diff --git a/scripts/compileContract.js b/scripts/compileContract.js @@ -16,7 +16,7 @@ fs.readFile(inputFilePath, "utf8", function(err, content) {
return console.log(err.message);
}
- content = "// Created using ICO Wizard https://github.com/oraclesorg/ico-wizard by Oracles Network \n" + content;
+ content = "// Create... | 3 |
diff --git a/modules/binary.js b/modules/binary.js @@ -81,27 +81,45 @@ exports.ByteArray = ByteArray;
exports.ByteString = ByteString;
/**
- * Converts the String to a mutable ByteArray using the specified encoding.
- * @param {String} string The string to convert into a ByteArray
- * @param {String} charset the name o... | 11 |
diff --git a/src/core/operations/ResizeImage.mjs b/src/core/operations/ResizeImage.mjs @@ -32,12 +32,14 @@ class ResizeImage extends Operation {
{
name: "Width",
type: "number",
- value: 100
+ value: 100,
+ min: 1
},
{
name: "Height",
type: "number",
- value: 100
+ value: 100,
+ min: 1
},
{
name: "Unit type",
| 0 |
diff --git a/public/app/js/cbus-audio.js b/public/app/js/cbus-audio.js @@ -23,7 +23,7 @@ cbus.audio = {
if (disableAutomaticProgressRestore === true) {
cbus.audio.element.currentTime = 0;
} else {
- tryRestoreProgress();
+ cbus.audio.tryRestoreProgress();
}
cbus.audio.element.onseeked = function() {
@@ -33,7 +33,7 @@ c... | 1 |
diff --git a/source/drag-drop/Drag.js b/source/drag-drop/Drag.js @@ -378,7 +378,13 @@ const Drag = Class({
}
// Add to files if type matches.
if ( !typeRegExp || typeRegExp.test( itemType ) ) {
- files.push( item.getAsFile() );
+ // Error logs show Chrome may return null for
+ // getAsFile; not sure why, but we should ... | 8 |
diff --git a/src/server/models/config.js b/src/server/models/config.js @@ -185,6 +185,7 @@ module.exports = function(crowi) {
isSavedStatesOfTabChanges: crowi.configManager.getConfig('crowi', 'customize:isSavedStatesOfTabChanges'),
hasSlackConfig: crowi.slackNotificationService.hasSlackConfig(),
env: {
+ NODE_ENV: env.... | 12 |
diff --git a/configs/next_router_vuejs.json b/configs/next_router_vuejs.json {
"index_name": "next_router_vuejs",
"start_urls": [
+ {
+ "url": "https://next.router.vuejs.org/zh/guide/",
+ "selectors_key": "guide",
+ "page_rank": 10,
+ "tags": ["guide"]
+ },
+ {
+ "url": "https://next.router.vuejs.org/zh/api/",
+ "selec... | 9 |
diff --git a/includes/Modules/Idea_Hub.php b/includes/Modules/Idea_Hub.php @@ -253,6 +253,7 @@ final class Idea_Hub extends Module
add_filter( 'wp_insert_post_empty_content', '__return_false' );
$post_id = wp_insert_post( array(), false );
+ remove_filter( 'wp_insert_post_empty_content', '__return_false' );
if ( 0 === ... | 2 |
diff --git a/examples/linkedcat/search_options.js b/examples/linkedcat/search_options.js @@ -208,6 +208,15 @@ var SearchOptions = {
}
self.setDateRangeFromPreset("#from", "#to", element.val());
+
+ if($(element.parent()).attr("id") === "include_content_type") {
+ $("#include_content_type-error").css("display", "none")
... | 2 |
diff --git a/test/unit/controller.js b/test/unit/controller.js @@ -616,7 +616,7 @@ exports['controller.tesselEnvVersions'] = {
// This happens with development builds.
noBuildVersionExistsForThisSha(test) {
- test.expect(4);
+ test.expect(1);
const sha = '59ce9c97e275e6e970c1ee668e5591514eb1cd74';
@@ -627,10 +627,7 @@ ... | 1 |
diff --git a/packages/app/src/styles/theme/default.scss b/packages/app/src/styles/theme/default.scss @@ -172,7 +172,7 @@ html[dark] {
$color-resize-button-hover: white;
$bgcolor-resize-button-hover: darken($bgcolor-resize-button, 5%);
// Sidebar contents
- $bgcolor-sidebar-context: #111d2f;
+ $bgcolor-sidebar-context: ... | 7 |
diff --git a/README.md b/README.md This is the source files repo for [https://www.daskeyboard.io](https://www.daskeyboard.io).
[](https://travis-ci.com/daskeyboard/daskeyboard.io/)
-[ {
acceptString(nameInlineClass) // Not OK: can't pass inline class instead of underlying type
// And vice versa:
- acceptNameTypeAlias("") // OK: pass underlying type instead of alias
- acceptName... | 14 |
diff --git a/player-avatar-binding.js b/player-avatar-binding.js /* utils to bind players to their avatars
set the avatar state from the player state */
+import * as THREE from 'three';
import Avatar from './avatars/avatars.js';
import {unFrustumCull, enableShadows} from './util.js';
const appSymbol = 'app'; // Symbol(... | 0 |
diff --git a/src/js/components/Chart/Chart.js b/src/js/components/Chart/Chart.js @@ -17,8 +17,10 @@ const renderBars = (values, bounds, scale, height) =>
const bottom = (value.length === 2 ? bounds[1][0] : value[1]);
const top = (value.length === 2 ? value[1] : value[2]);
if (top !== 0) {
- const d = `M ${value[0] * sc... | 1 |
diff --git a/README.md b/README.md @@ -32,14 +32,14 @@ Community chat. [Join us!][discord-url]
### Basic setup
-Download the [minified library](https://raw.githubusercontent.com/WhitestormJS/whs.js/dev/build/whs.min.js) or link the one from [CDN](https://cdnjs.com/libraries/whitestorm.js)
+Download the [minified librar... | 3 |
diff --git a/userscript.user.js b/userscript.user.js @@ -51864,8 +51864,10 @@ var $$IMU_EXPORT$$;
if (domain === "bizweb.dktcdn.net") {
// https://bizweb.dktcdn.net/thumb/grande/100/177/764/products/alicia-vikander-6.jpg?v=1502942542610
+ // https://bizweb.dktcdn.net/thumb/compact/100/177/764/products/alicia-vikander-6... | 7 |
diff --git a/geometry-manager.js b/geometry-manager.js @@ -2342,6 +2342,42 @@ const geometryWorker = (() => {
allocator.freeAll();
};
+ w.getGeometryPhysics = (physics, id) => {
+ const allocator = new Allocator();
+ const positionsBuffer = allocator.alloc(Float32Array, 1024 * 1024);
+ const numPositions = allocator.al... | 0 |
diff --git a/src/core/content/connector.js b/src/core/content/connector.js @@ -374,7 +374,8 @@ function BaseConnector() {
* @see {@link MetadataFilter}
* @type {Object}
*/
- this.filter = MetadataFilter.getTrimFilter();
+ this.filter = MetadataFilter.getTrimFilter().extend(
+ MetadataFilter.getNbspFilter());
/**
* Add ... | 14 |
diff --git a/lib/types.js b/lib/types.js @@ -96,7 +96,7 @@ type DatatoolsSettings = {
export type Fare = {
currencyType: string,
description: string,
- fareRules: Array<Object>,
+ fare_rules: Array<Object>,
feedId: string,
gtfsFareId: string,
id: string,
@@ -195,7 +195,7 @@ export type GtfsFare = {
currency_type: strin... | 3 |
diff --git a/token-metadata/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/metadata.json b/token-metadata/0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e/metadata.json "symbol": "EDI",
"address": "0x79C5a1Ae586322A07BfB60be36E1b31CE8C84A1e",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/blocks/datatypes.js b/blocks/datatypes.js @@ -18,7 +18,7 @@ Blockly.Blocks['defined_recordtype_typed'] = {
this.appendDummyInput()
.appendField('type ')
- .appendField(typename_field, 'VAR')
+ .appendField(typename_field, 'DATANAME')
.appendField('= {');
this.itemCount_ = 0;
| 10 |
diff --git a/src/test/functional/functional-tests.js b/src/test/functional/functional-tests.js @@ -446,7 +446,6 @@ describe('functional tests', function() {
client.statObject(bucketName, _100kbObjectName, (e, stat) => {
if (e) return done(e)
if (stat.size !== _100kb.length) return done(new Error('size mismatch'))
- if ... | 2 |
diff --git a/packages/app/src/components/Navbar/GrowiContextualSubNavigation.tsx b/packages/app/src/components/Navbar/GrowiContextualSubNavigation.tsx @@ -194,8 +194,30 @@ const GrowiContextualSubNavigation = (props) => {
if (typeof pathOrPathsToDelete !== 'string') {
return;
}
+
mutateChildren();
+
+ const path = path... | 7 |
diff --git a/shared/img/status--mixed.svg b/shared/img/status--mixed.svg -<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22"><g fill="none" fill-rule="evenodd"><circle cx="11" cy="11" r="10.5" stroke="#F89D1F"/><path fill="#F89D1F" d="M11 12.731c-.393 0-.714-.4-.714-.891L10 6.892c0-.49.607-.892 1-.892s1 .40... | 3 |
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.6.1 (unreleased)
-### Breaking
-
### Feature
+
- Allow addons to provide less files @tiberiuichim
-- Highlight the sidebar toggle button with a small flashing animation @silviubogan @tiberiuichim
- Making Content browser aware of context @iFlameing
-- Fix click-select block... | 6 |
diff --git a/token-metadata/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/metadata.json b/token-metadata/0x80fB784B7eD66730e8b1DBd9820aFD29931aab03/metadata.json "symbol": "LEND",
"address": "0x80fB784B7eD66730e8b1DBd9820aFD29931aab03",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/script/ci/init.sh b/script/ci/init.sh @@ -4,9 +4,6 @@ cd /cartodb
mkdir -p log && chmod -R 777 log/
createdb -T template0 -O postgres -h localhost -U postgres -E UTF8 template_postgis || true
psql -h localhost -U postgres template_postgis -c 'CREATE EXTENSION IF NOT EXISTS postgis;CREATE EXTENSION IF NOT E... | 2 |
diff --git a/node-binance-api.js b/node-binance-api.js /* ============================================================
* node-binance-api
* https://github.com/jaggedsoft/node-binance-api
+ * ============================================================
+ * Copyright 2017-, Jon Eyrick
+ * Released under the MIT License
*... | 3 |
diff --git a/spec/components/list.js b/spec/components/list.js @@ -50,7 +50,7 @@ class ListTest extends React.Component {
rightIcon="star"
/>
<ListItem
- avatar="https://pbs.twimg.com/profile_images/693578804808278017/a5y4h8MN_400x400.png"
+ avatar="https://placeimg.com/80/80/people"
caption="Javi Velasco"
legend="Fron... | 1 |
diff --git a/packages/app/test/integration/service/v5.migration.test.js b/packages/app/test/integration/service/v5.migration.test.js @@ -1206,12 +1206,17 @@ describe('V5 page migration', () => {
await normalizeParentByPath('/norm_parent_by_path_B', rootUser);
- const pageB = await Page.findOne({ path: '/norm_parent_by_... | 7 |
diff --git a/src/lib/connectTraceToPlot.js b/src/lib/connectTraceToPlot.js @@ -32,7 +32,30 @@ export default function connectTraceToPlot(WrappedComponent) {
let fullTrace = {};
for (let i = 0; i < fullData.length; i++) {
if (trace.uid === fullData[i]._fullInput._input.uid) {
+ /*
+ * Fit transforms are custom transform... | 12 |
diff --git a/universe.js b/universe.js @@ -28,7 +28,7 @@ const universeSpecs = {
start_url: 'https://webaverse.github.io/street/index.js',
},
{
- position: [-40, 15, -30],
+ position: [-20, 30, -30],
start_url: 'https://avaer.github.io/land/index.js',
},
{
@@ -40,19 +40,24 @@ const universeSpecs = {
start_url: 'https:/... | 0 |
diff --git a/node/lib/util/push.js b/node/lib/util/push.js @@ -246,6 +246,10 @@ exports.push = co.wrap(function *(repo, remoteName, source, target, force) {
// Resolve the submodule's URL against the URL of the meta-repo,
// ignoring the remote that is configured in the open submodule.
+ if (!(subName in urls)) {
+ thr... | 7 |
diff --git a/src/encoded/static/components/matrix.js b/src/encoded/static/components/matrix.js @@ -283,8 +283,9 @@ class Matrix extends React.Component {
// this.state.yGroupOpen[key]), extract just the
// group rows that are under the display limit.
const groupRows = (this.state.yGroupOpen[group.key] || this.state.all... | 0 |
diff --git a/common/types/platform-bufferutils.d.ts b/common/types/platform-bufferutils.d.ts declare module 'platform-bufferutils' {
export const base64CharSet: string;
export const hexCharSet: string;
- export const isBuffer: (buffer: unknown) => buf is Buffer | ArrayBuffer | DataView;
+ export const isBuffer: (buffer... | 1 |
diff --git a/test/spec/engine.spec.js b/test/spec/engine.spec.js @@ -23,7 +23,7 @@ describe('Engine', function () {
it('should throw a descriptive error when called with no parameters', function () {
expect(function () {
new Engine(); // eslint-disable-line
- }).toThrowError('new Engine() called with no paramters');
+ ... | 1 |
diff --git a/lib/backends/map.js b/lib/backends/map.js @@ -7,13 +7,13 @@ const layerMetadataFactory = require('../metadata');
/**
* @param {RendererCache} rendererCache
* @param {MapStore} mapStore
- * @param {MapValidatorBackend} mapValidatorBackend
+ * @param {MapValidator} mapValidator
* @constructor
*/
-function Ma... | 10 |
diff --git a/src/screens/transfer/screen/powerDownScreen.js b/src/screens/transfer/screen/powerDownScreen.js @@ -98,8 +98,8 @@ class PowerDownView extends Component {
_handleAmountChange = ({ hpValue, availableVestingShares }) => {
const { hivePerMVests } = this.props;
- const parsedValue = parseFloat(hpValue);
- const... | 14 |
diff --git a/plugin.xml b/plugin.xml <?xml version='1.0' encoding='utf-8'?>
-<plugin id="cordova-plugin-googlemaps" version="2.5.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
+<plugin id="cordova-plugin-googlemaps" version="2.5.0-beta-20181020-0912" xmln... | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.